home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000286_news@columbia.edu _Wed Nov 17 16:02:17 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id QAA08678
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 17 Nov 1999 16:02:16 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id PAA10506
  7.     for kermit.misc@watsun.cc.columbia.edu; Wed, 17 Nov 1999 15:59:55 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: telnetting & international character sets
  11. Date: 17 Nov 1999 20:59:54 GMT
  12. Organization: Columbia University
  13. Message-ID: <80v50a$a87$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <3832DA08.1CDCEFAD@x9media.com>,
  17. Frank Joerdens  <frank@x9media.com> wrote:
  18. : When telnetting from one Linux box to another I cannot get the
  19. : international characters to work properly. When logged in at the console
  20. : on either box, I can display those characters just fine (German
  21. : umlauts), but not in a telnet session. How do you control this behaviour
  22. : with the Linux telnet program?
  23. Different computers and applications can use different encodings for the
  24. same characters.  Most Telnet clients do not care about this, and so your
  25. Umlaute turn into Abf∩┐╜lle.
  26.  
  27. It can even happen between two Linuxes, in which the local encoding might
  28. be (say) PC Code Page 850, but the xterm window uses ISO 8859-1 Latin
  29. Alphabet 1.
  30.  
  31. Use a telnet client that knows about character sets, such as C-Kermit:
  32.  
  33.   http://www.columbia.edu/kermit/ck70.html
  34.  
  35. If my guess about the character sets was correct, you would give it these
  36. commands:
  37.  
  38.   eightbit
  39.   set terminal character-set cp850 latin1
  40.   telnet <hostname>
  41.  
  42. This means: use 8-bit data paths between the two computers, convert
  43. between CP850 on the remote computer and Latin-1 on the local one, and
  44. make a Telnet connection from the local to the remote.
  45.  
  46. - Frank